home *** CD-ROM | disk | FTP | other *** search
/ Hacker's Secrets 4 / Hacker's Secrets 4.iso / faq / sci142.txt < prev    next >
Text File  |  1997-01-06  |  22KB  |  470 lines

  1. Subject: Cryptography FAQ (05/10: Product Ciphers)
  2. Supersedes: <cryptography-faq/part05_848729385@rtfm.mit.edu>
  3. Date: 14 Dec 1996 06:51:07 GMT
  4. References: <cryptography-faq/part01_850546235@rtfm.mit.edu>
  5. X-Last-Updated: 1994/07/05
  6.  
  7.  
  8. This is the fifth of ten parts of the sci.crypt FAQ. The parts are
  9. mostly independent, but you should read the first part before the rest.
  10. We don't have the time to send out missing parts by mail, so don't ask.
  11. Notes such as ``[KAH67]'' refer to the reference list in the last part.
  12.  
  13. The sections of this FAQ are available via anonymous FTP to rtfm.mit.edu 
  14. as /pub/usenet/news.answers/cryptography-faq/part[xx]. The Cryptography 
  15. FAQ is posted to the newsgroups sci.crypt, talk.politics.crypto, 
  16. sci.answers, and news.answers every 21 days.
  17.  
  18.  
  19.  
  20. Contents:
  21.  
  22. 5.1. What is a product cipher?
  23. 5.2. What makes a product cipher secure?
  24. 5.3. What are some group-theoretic properties of product ciphers?
  25. 5.4. What can be proven about the security of a product cipher?
  26. 5.5. How are block ciphers used to encrypt data longer than the block size?
  27. 5.6. Can symmetric block ciphers be used for message authentication?
  28. 5.7. What exactly is DES?
  29. 5.8. What is triple DES?
  30. 5.9. What is differential cryptanalysis?
  31. 5.10. How was NSA involved in the design of DES?
  32. 5.11. Is DES available in software?
  33. 5.12. Is DES available in hardware?
  34. 5.13. Can DES be used to protect classified information?
  35. 5.14. What are ECB, CBC, CFB, OFB, and PCBC encryption?
  36.  
  37.  
  38. 5.1. What is a product cipher?
  39.  
  40.   A product cipher is a block cipher that iterates several weak
  41.   operations such as substitution, transposition, modular
  42.   addition/multiplication, and linear transformation. (A ``block
  43.   cipher'' just means a cipher that encrypts a block of data---8 bytes,
  44.   say---all at once, then goes on to the next block.) The notion of
  45.   product ciphers is due to Shannon [SHA49]. Examples of modern
  46.   product ciphers include LUCIFER [SOR84], DES [NBS77], SP-networks
  47.   [KAM78], LOKI [BRO90], FEAL [SHI84], PES [LAI90], Khufu and Khafre
  48.   [ME91a]. The so-called Feistel ciphers are a class of product
  49.   ciphers which operate on one half of the ciphertext at each round,
  50.   and then swap the ciphertext halves after each round. LUCIFER,
  51.   DES, LOKI, and FEAL are examples of Feistel ciphers.
  52.  
  53.   The following table compares the main parameters of several product 
  54.   ciphers:
  55.  
  56.   cipher   |   block length   |   key bits   |   number of rounds
  57.   LUCIFER          128               128                16
  58.   DES               64                56                16
  59.   LOKI              64                64                16
  60.   FEAL              64               128            2^x, x >= 5
  61.   PES               64               128                 8
  62.  
  63. 5.2. What makes a product cipher secure?
  64.  
  65.   Nobody knows how to prove mathematically that a product cipher is
  66.   completely secure. So in practice one begins by demonstrating that the
  67.   cipher ``looks highly random''. For example, the cipher must be
  68.   nonlinear, and it must produce ciphertext which functionally depends
  69.   on every bit of the plaintext and the key. Meyer [MEY78] has shown
  70.   that at least 5 rounds of DES are required to guarantee such a
  71.   dependence. In this sense a product cipher should act as a ``mixing''
  72.   function which combines the plaintext, key, and ciphertext in a
  73.   complex nonlinear fashion.
  74.  
  75.   The fixed per-round substitutions of the product cipher are
  76.   referred to as S-boxes. For example, LUCIFER has 2 S-boxes, and DES
  77.   has 8 S-boxes. The nonlinearity of a product cipher reduces to a
  78.   careful design of these S-boxes. A list of partial design criteria
  79.   for the S-boxes of DES, which apply to S-boxes in general, may be
  80.   found in Brown [BRO89] and Brickell et al. [BRI86].
  81.  
  82. 5.3. What are some group-theoretic properties of product ciphers?
  83.  
  84.   Let E be a product cipher that maps N-bit blocks to N-bit blocks.
  85.   Let E_K(X) be the encryption of X under key K. Then, for any fixed K,
  86.   the map sending X to E_K(X) is a permutation of the set of N-bit
  87.   blocks. Denote this permutation by P_K. The set of all N-bit
  88.   permutations is called the symmetric group and is written S_{2^N}.
  89.   The collection of all these permutations P_K, where K ranges over all
  90.   possible keys, is denoted E(S_{2^N}). If E were a random mapping from
  91.   plaintexts to ciphertexts then we would expect E(S_{2^N}) to generate
  92.   a large subset of S_{2^N}.
  93.  
  94.   Coppersmith and Grossman [COP74] have shown that a very simple
  95.   product cipher can generate the alternating group A_{2^N} given a
  96.   sufficient number of rounds. (The alternating group is half of the
  97.   symmetric group: it consists of all ``even'' permutations, i.e., all
  98.   permutations which can be written as an even number of swaps.)
  99.   Even and Goldreich [EVE83] were able to extend these results to show
  100.   that Feistel ciphers can generate A_{2^N}, given a sufficient number
  101.   of rounds.
  102.  
  103.   The security of multiple encipherment also depends on the
  104.   group-theoretic properties of a cipher. Multiple encipherment is an
  105.   extension over single encipherment if for keys K1, K2 there does
  106.   not exist a third key K3 such that
  107.  
  108.   E_K2(E_K1(X)) == E_(K3)(X)                (**)
  109.  
  110.   which indicates that encrypting twice with two independent keys
  111.   K1, K2 is equal to a single encryption under the third key K3. If
  112.   for every K1, K2 there exists a K3 such that eq. (**) is true then
  113.   we say that E is a group.
  114.  
  115.   This question of whether DES is a group under this definition was
  116.   extensively studied by Sherman, Kaliski, and Rivest [SHE88]. In their
  117.   paper they give strong evidence for the hypothesis that DES is not a
  118.   group. In fact DES is not a group [CAM93].
  119.  
  120. 5.4. What can be proven about the security of a product cipher?
  121.  
  122.   Recall from above that P_K is a permutation produced by E under
  123.   some key K. The goal of the designer of E is to ensure that P_K
  124.   appears to be a random element of S_{2^N}, the symmetric group.
  125.   Let R be an element of S_{2^N} selected randomly. We will say that P_K
  126.   and R are indistinguishable if an observer given P_K and R in some
  127.   order cannot distinguish between these two permutations in polynomial
  128.   time. That is, with time bounded resources, the observer cannot
  129.   determine which of the permutations is produced by E: the optimal
  130.   decision is no better than simply guessing.
  131.  
  132.   Luby and Rackoff [LUB88] have shown that a class of Feistel ciphers
  133.   are secure in this sense when the round mapping is replaced by
  134.   random boolean functions.
  135.  
  136. 5.5. How are block ciphers used to encrypt data longer than the block size?
  137.  
  138.   There are four standard ``modes of operation'' (and numerous non-standard
  139.   ones as well). The standard modes of operation are defined in the U.S.
  140.   Department of Commerce Federal Information Processing Standard (FIPS) 81,
  141.   published in 1980. See the question about ECB below for more details.
  142.  
  143.   Although they are defined for the DES block cipher, the ``modes of
  144.   operation'' can be used with any block cipher.
  145.  
  146. 5.6. Can symmetric block ciphers be used for message authentication?
  147.  
  148.   You may use a symmetric cryptosystem block cipher to prove to yourself
  149.   that you generated a message, and that the message wasn't altered
  150.   after you created it. But you cannot prove these things to anyone else
  151.   without revealing your key. Thereafter you cannot prove anything about
  152.   messages authenticated with that key.
  153.   
  154.   See ANSI X3.106-1983 and FIPS 113 (1985) for a standard method of message
  155.   authentication using DES.
  156.  
  157. 5.7. What exactly is DES?
  158.  
  159.   DES is the U.S. Government's Data Encryption Standard, a product 
  160.   cipher that operates on 64-bit blocks of data, using a 56-bit key. 
  161.  
  162.   It is defined in FIPS 46-1 (1988) [which supersedes FIPS 46 (1977)].
  163.   FIPS are Federal Information Processing Standards published by NTIS.
  164.   DES is identical to the ANSI standard Data Encryption Algorithm (DEA)
  165.   defined in ANSI X3.92-1981. 
  166.  
  167. 5.8. What is triple DES?
  168.  
  169.   Triple DES is a product cipher which, like DES, operates on 64-bit 
  170.   data blocks. There are several forms, each of which uses the DES
  171.   cipher 3 times. Some forms use two 56-bit keys, some use three.
  172.   The DES ``modes of operation'' may also be used with triple-DES.
  173.  
  174.   Some people refer to E(K1,D(K2,E(K1,x))) as triple-DES.
  175.  
  176.   This method is defined in chapter 7.2 of the ANSI standard X9.17-1985
  177.   ``Financial Institution Key Management'' and is intended for use in
  178.   encrypting DES keys and IVs for ``Automated Key Distribution''. Its
  179.   formal name is ``Encryption and Decryption of a Single Key by a Key
  180.   Pair'', but it is referenced in other standards documents as EDE.
  181.  
  182.   That standard says (section 7.2.1): ``Key encrypting keys may be a single
  183.   DEA key or a DEA key pair. Key pairs shoud be used where additional
  184.   security is needed (e.g., the data protected by the key(s) has a long
  185.   security life). A key pair shall not be encrypted or decrypted using a
  186.   single key.''
  187.  
  188.   Others use the term ``triple-DES'' for E(K1,D(K2,E(K3,x))) or
  189.   E(K1,E(K2,E(K3,x))).
  190.  
  191.   All of these methods are defined only for ECB mode of operation.  The
  192.   security of various methods of achieving other modes of operation (such as
  193.   CBC) is under study at the moment.  For now, it should be assumed that
  194.   other modes be defined as they are today, but with E(K1,D(K2,E(K1,x))) as
  195.   the block cipher within the feedback mechanism creating the mode.
  196.  
  197.   One of us (Ellison) has long advocated triple DES use in the form
  198.  
  199.     E(K1, Tran( E(K2, Tran( E(K3, Compress( x )))))),
  200.  
  201.   where each DES instance has its own key and IV (for CBC mode) and Tran is
  202.   a large-block transposition program. Tran is available from [FTPTR].  This
  203.   claims to gain security by diffusing single bit changes over a much larger
  204.   block (Tran's block size).  Other compositions of weak ciphers with DES
  205.   are possible.  For example, one could use:
  206.  
  207.    E(K1, Prngxor(K4, Tran( E(K2, Tran( Prngxor(K5, E(K3, Compress( x )))))))),
  208.  
  209.   where Prngxor() [FTPPX] is a simple stream cipher driven from a long-period
  210.   pseudo-random number generator (PRNG), to make sure that all plaintext or
  211.   ciphertext patterns are hidden while permitting the use of ECB mode for DES
  212.   (since there are certain weaknesses in the use of inner CBC loops for
  213.   multiple-DES, under some attacks, and we do not yet know if these show up
  214.   under composition with Tran()).
  215.  
  216. 5.9. What is differential cryptanalysis?
  217.  
  218.   Differential cryptanalysis is a statistical attack that can be
  219.   applied to any iterated mapping (i.e., any mapping which is based on
  220.   a repeated round function). The method was recently popularized by
  221.   Biham and Shamir [BIH91], but Coppersmith has remarked that the
  222.   S-boxes of DES were optimized against this attack some 20 years ago.
  223.   This method has proved effective against several product ciphers,
  224.   notably FEAL [BI91a].
  225.  
  226.   Differential cryptanalysis is based on observing a large number of
  227.   ciphertexts Y, Y' whose corresponding plaintexts X, X' satisfy a
  228.   known difference D = X+X', where + is componentwise XOR. In the
  229.   basic Biham-Shamir attack, 2^{47} such plaintext pairs are required
  230.   to determine the key for DES. Substantially fewer pairs are required
  231.   if DES is truncated to 6 or 8 rounds. In these cases, the actual key
  232.   can be recovered in a matter of minutes using a few thousand pairs.
  233.   For full DES this attack is impractical because it requires so many
  234.   known plaintexts.
  235.  
  236.   The work of Biham and Shamir on DES revealed several startling
  237.   observations on the algorithm. Most importantly, if the key
  238.   schedule was removed from DES and a 16*48 = 768-bit key was used,
  239.   the key could be recovered in less than 2^{64} steps. Thus
  240.   independent subkeys do not add substantial security to DES.
  241.   Further, the S-boxes of DES are extremely sensitive in that
  242.   changing even single entries in these tables yields significant
  243.   improvement in the differential attack.
  244.  
  245.   Adi Shamir is quoted to say (NYTimes Oct 13 1991), ``I would say
  246.   that, contrary to what some people believe, there is no evidence
  247.   of tampering with the DES so that the basic design was weakened.''
  248.  
  249. 5.10. How was NSA involved in the design of DES?
  250.  
  251.   According to Kinnucan [KIN78], Tuchman, a member of the group that
  252.   developed DES at IBM is quoted as saying, ``We developed the DES
  253.   algorithm entirely within IBM using IBMers. The NSA did not
  254.   dictate a single wire!'' Tuchman and Meyer (another developer of
  255.   DES) spent a year breaking ciphers and finding weaknesses in
  256.   Lucifer. They then spent two years strengthening Lucifer. ``Their
  257.   basic approach was to look for strong substitution, permutation,
  258.   and key scheduling functions ... IBM has classified the notes
  259.   containing the selection criteria at the request of the NSA....
  260.   `The NSA told us we had inadvertently reinvented some of the deep
  261.   secrets it uses to make its own algorithms,' explains Tuchman.''
  262.   
  263.   On the other hand, a document called ``Involvement of the NSA in
  264.   the development of DES: unclassified summary of the United States
  265.   Select Committee on Intelligence'', printed in the IEEE
  266.   Communications Magazine, p53-55, 1978, states: ``In the development
  267.   of DES, NSA convinced IBM that a reduced keysize was sufficient;
  268.   indirectly assisted in the development of the S-box structures; and
  269.   certified that the final DES algorithm was, to the best of their
  270.   knowledge, free from any statistical or mathematical weakness.''
  271.  
  272.   Clearly the key size was reduced at the insistence of the NSA.
  273.   The article further states that the NSA did not tamper with the
  274.   algorithm itself, just the parameters, which in some sense
  275.   resolves the apparent conflict in the remarks of Meyer and Tuchman
  276.   presented above.
  277.  
  278. 5.11. Is DES available in software?
  279.  
  280.   Several people have made DES code available via ftp (see part 10 for
  281.   pathnames): Stig Ostholm [FTPSO]; BSD [FTPBK]; Eric Young [FTPEY];
  282.   Dennis Furguson [FTPDF]; Mark Riordan [FTPMR]; Phil Karn [FTPPK].
  283.   A Pascal listing of DES is also given in Patterson [PAT87]. Antti 
  284.   Louko <alo@kampi.hut.fi> has written a version of DES with BigNum
  285.   packages in [FTPAL].
  286.  
  287.   FIPS 46-1 says ``The algorithm specified in this standard is to be
  288.   implemented ... using hardware (not software) technology. ...
  289.   Software implementations in general purpose computers are not in
  290.   compliance with this standard.''  Despite this, software
  291.   implementations abound, and are used by government agencies.
  292.  
  293. 5.12. Is DES available in hardware?
  294.  
  295.   The following paragraphs are quoted from messages sent to the editors.
  296.   We don't vouch for the quality or even existence of the products.
  297.  
  298.   Christian Franke, franke@informatik.rwth-aachen.de, says: ``1.
  299.   Cryptech CRY12C102: 22.5Mbit/s according to Data Sheet, with 32 Bit
  300.   interface. We use this one, because it was the only one available when
  301.   we started the project. No problems !  2. Pijnenburg PCC100: 20Mbit/s
  302.   according to Data Sheet. Address: PIJNENBURG B.V., Boxtelswweg 26,
  303.   NL-5261 NE Vught, The Netherlands. 3. INFOSYS DES Chip (Germany):
  304.   S-Boxes must be loaded by software. So you can modify the Algorithm.
  305.   Sorry, I don't have the data sheet handy. Please E-Mail me if you need
  306.   further information.''
  307.  
  308.   Marcus J Ranum, mjr@tis.com, says: ``SuperCrypt'' 100Mb/sec and faster
  309.   DES and Proprietary Storage for 16 56-bit keys Key stream generator
  310.   Integrated hardware DES3 procedure Extended mode with 112 bit keys;
  311.   Computer Elektronik Infosys; 512-A Herndon Parkway,; Herndon, VA
  312.   22070; 800-322-3464.
  313.  
  314.   Tim Hember, thember@gandalf.ca, says: Newbridge Microsystems sells
  315.   an AM9568 compatible DES chip that operates at 25MHz, performs a
  316.   round of encryption in 18 clocks, has a three-stage pipeline,
  317.   supports ECB, CBC, CFB-8 and >>> CFB-1 <<<<. Further it is very
  318.   reasonable priced as opposed to other high-end DES chips. Call
  319.   Newbridge Microsystems, Ottawa, 613-592-0714. (... there are no
  320.   import/export issues with Canada and the US). If you require custom
  321.   DES or Public Key ICs then Timestep Engineering developed
  322.   Newbridge's crypto chips and ICs for other commercial and
  323.   educational establishments. They can be reached at 613-820-0024.
  324.  
  325. 5.13. Can DES be used to protect classified information?
  326.  
  327.   DES is not intended to protect classified data. FIPS 46-1 says:
  328.   ``This standard will be used by Federal departments and agencies for
  329.   the cryptographic protection of computer data when the following
  330.   conditions apply: 1. ... cryptographic protection is required; and
  331.   2. the data is not classified according to the National Security Act
  332.   of 1947, as amended, or the Atomic Energy Act of 1954, as amended.''
  333.  
  334. 5.14. What are ECB, CBC, CFB, OFB, and PCBC encryption?
  335.  
  336.   These are methods for using block ciphers, such as DES, to encrypt 
  337.   messages, files, and blocks of data, known as ``modes of operation.''
  338.   Four ``modes of operation'' are defined in FIPS 81 (1980 December 2), 
  339.   and also in ANSI X3.106-1983. 
  340.  
  341.   FIPS 81 specifies that when 7-bit ASCII data is sent in octets, the
  342.   unused most-significant bit is to be set to 1.
  343.  
  344.   FIPS 81 also specifies the padding for short blocks.
  345.  
  346.   The four FIPS/ANSI standard DES modes of operation are: 
  347.         Electronic Code Book  (ECB), 
  348.         Cipher Block Chaining (CBC), 
  349.         K-bit Cipher FeedBack (CFB), and 
  350.         K-bit Output FeedBack (OFB).
  351.  
  352.   All four of the ANSI/FIPS modes have very little "error extension".
  353.   For a single bit error in the cipherstream, none of them produce an
  354.   error burst in the decrypted output stream of longer than 128 bits.
  355.  
  356.   A fifth mode of operation, used in Kerberos and elsewhere but not
  357.   defined in any standard, is error-Propagating Cipher Block Chaining 
  358.   (PCBC).  Unlike the 4 standard modes, PCBC extends or propagates the
  359.   effect of a single bit error in the cipherstream throughout remainder 
  360.   of the decrypted textstream after the point of error.
  361.  
  362.   These 5 methods are explained below in a C-language-like notation.
  363.  
  364.   Some symbols:
  365.  
  366.   P[n]  The n'th block of plaintext, input to encryption, output from
  367.         decryption. Size of block determined by the mode.
  368.  
  369.   C[n]  The n'th block of ciphertext, output from encryption, input to
  370.         decryption. Size of block determined by the mode.
  371.  
  372.   E(m)  The DES encryption function, performed on 64-bit block m, using
  373.         the 16-key schedule derived from some 56-bit key.
  374.  
  375.   D(m)  The DES decryption function, performed on 64-bit block m, using
  376.         the same key schedule as in E(m), except that the 16 keys
  377.         in the schedule are used in the opposite order as in E(m).
  378.  
  379.   IV    A 64-bit ``initialization vector'', a secret value which, along with
  380.         the key, is shared by both encryptor and decryptor.
  381.  
  382.   I[n]  The n'th value of a 64-bit variable, used in some modes.
  383.   R[n]  The n'th value of a 64-bit variable, used in some modes.
  384.  
  385.   LSB(m,k) The k least significant (right-most) bits of m.
  386.         e.g. m & ((1 << k) - 1)
  387.  
  388.   MSB(m,k) The k most significant (left-most) bits of m.
  389.         e.g. (m >> (64-k)) & ((1 << k) - 1)
  390.  
  391.   = ^ << >> &  operators as defined in the c langage.
  392.  
  393.  
  394.   Electronic Code Book (ECB):
  395.  
  396.           P[n] and C[n] are each 64-bits long.
  397.  
  398.           Encryption:                   Decryption:
  399.           C[n] = E(P[n])                P[n] = D(C[n])
  400.  
  401.  
  402.   Cipher Block Chaining (CBC):
  403.  
  404.           P[n] and C[n] are each 64-bits long.
  405.  
  406.           Encryption:                   Decryption:
  407.           C[0] = E(P[0]^IV)             P[0] = D(C[0])^IV
  408.   (n>0)   C[n] = E(P[n]^C[n-1])         P[n] = D(C[n])^C[n-1]
  409.  
  410.  
  411.   Propagating Cipher Block Chaining (PCBC):
  412.  
  413.           P[n] and C[n] are each 64-bits long.
  414.  
  415.           Encryption:                   Decryption:
  416.           C[0] = E(P[0]^IV)             P[0] = D(C[0])^IV
  417.   (n>0)   C[n] = E(P[n]^P[n-1]^C[n-1])  P[n] = D(C[n])^P[n-1]^C[n-1]
  418.  
  419.  
  420.   k-bit Cipher FeedBack (CFB):
  421.  
  422.           P[n] and C[n] are each k bits long, 1 <= k <= 64. 
  423.  
  424.           Encryption:                   Decryption:
  425.           I[0] = IV                     I[0] = IV
  426.   (n>0)   I[n] = I[n-1]<<k | C[n-1]     I[n] = I[n-1]<<k | C[n-1]       
  427.   (all n) R[n] = MSB(E(I[n]),k)         R[n] = MSB(E(I[n]),k)
  428.   (all n) C[n] = P[n]^R[n]              P[n] = C[n]^R[n]
  429.  
  430.           Note that for k==64, this reduces to:
  431.  
  432.           I[0] = IV                     I[0] = IV
  433.   (n>0)   I[n] = C[n-1]                 I[n] = C[n-1]   
  434.   (all n) R[n] = E(I[n])                R[n] = E(I[n])
  435.   (all n) C[n] = P[n]^R[n]              P[n] = C[n]^R[n]
  436.  
  437.   CFB notes: Since I[n] depends only on the plain or cipher text from the
  438.   previous operation, the E() function can be performed in parallel with
  439.   the reception of the text with which it is used.
  440.  
  441.  
  442.   k-bit Output FeedBack (OFB):
  443.  
  444.           P[n] and C[n] are each k bits long, 1 <= k <= 64. 
  445.  
  446.           Encryption:                   Decryption:
  447.           I[0] = IV                     I[0] = IV
  448.   (n>0)   I[n] = I[n-1]<<k | R[n-1]     I[n] = I[n-1]<<k | R[n-1]       
  449.   (all n) R[n] = MSB(E(I[n]),k)         R[n] = MSB(E(I[n]),k)
  450.   (all n) C[n] = P[n]^R[n]              P[n] = C[n]^R[n]
  451.  
  452.           Note that for k==64, this reduces to:
  453.  
  454.           I[0] = IV                     I[0] = IV
  455.   (n>0)   I[n] = R[n-1]                 I[n] = R[n-1]   
  456.   (all n) R[n] = E(I[n])                R[n] = E(I[n])
  457.   (all n) C[n] = P[n]^R[n]              P[n] = C[n]^R[n]
  458.  
  459.   OFB notes: encryption and decryption are identical. Since I[n] is
  460.   independent of P and C, the E() function can be performed in advance of
  461.   the receipt of the plain/cipher text with which it is to be used.
  462.  
  463.  
  464.   Additional notes on DES ``modes of operation'':
  465.  
  466.   ECB and CBC use E() to encrypt and D() to decrypt, but the feedback
  467.   modes use E() to both encrypt and decrypt. This disproves the following 
  468.   erroneous claim: ``DES implementations which provide E() but not D()
  469.   cannot be used for data confidentiality.''
  470.